home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / bugbear_b.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  55 lines

  1. #
  2. # (C) 2003 StrongHoldNet
  3. #
  4. # Licence : GPL v2
  5. #
  6. # Modifications by rd:
  7. #  -> Try every web server, not just port 81
  8. #
  9. #
  10. # Ref: http://www.f-secure.com/v-descs/bugbear_b.shtml
  11. #
  12. # UNTESTED
  13.  
  14. if (description)
  15. {
  16.  script_id(11707);
  17.  script_version ("$Revision: 1.1 $");
  18.  
  19.  script_name(english:"Bugbear.B web backdoor");
  20.  desc["english"] = "
  21. Your system seems to be infected by the Bugbear.B virus
  22. (its backdoor has been detected on port 81).
  23.  
  24. More information: http://www.f-secure.com/v-descs/bugbear_b.shtml
  25.  
  26. Solution: Use your favorite antivirus to disinfect your
  27. system. Standalone disinfection tools also exist :
  28. ftp://ftp.f-secure.com/anti-virus/tools/f-bugbr.zip
  29.  
  30. Risk factor : High";
  31.  
  32.  script_description(english:desc["english"]);
  33.  script_summary(english:"Checks for Bugbear.B web backdoor");
  34.  script_category(ACT_GATHER_INFO);
  35.  script_family(english:"Backdoors", francais:"Backdoors");
  36.  script_copyright(english:"This script is Copyright (C) 2003 StrongHoldNet");
  37.  script_dependencie("find_service.nes");
  38.  script_require_ports("Services/www", 81);
  39.  exit(0);
  40. }
  41.  
  42. include("http_func.inc");
  43. include("http_keepalive.inc");
  44.  
  45. port = get_kb_item("Services/www");
  46. if(!port)port = 81;
  47.  
  48. if(!get_port_state(port))exit(0);
  49. url = string(d, '/%NETHOOD%/');
  50. req = http_get(item:url, port:port);
  51. buf = http_keepalive_send_recv(port:port, data:req);
  52. if( buf == NULL ) exit(0);
  53. if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:buf) && "Microsoft Windows Network" >< buf) security_hole(port);
  54.  
  55.